added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / VBAzureTableStoragePaging / MvcWebRole / Views / Shared / Site.Master
blobc73f8f250adeaeb48d4cbf761709def512949f83
1 <%@ Master Language="VB" Inherits="System.Web.Mvc.ViewMasterPage" %>
2 <%-- The following line works around an ASP.NET compiler warning --%>
3 <%= ""%>
5 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6 <html xmlns="http://www.w3.org/1999/xhtml">
7 <head runat="server">
8     <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
9     <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
10 </head>
12 <body>
13     <div class="page">
15         <div id="header">
16             <div id="title">
17                 <h1>Windows Azure Table Storage Paging Sample</h1>
18             </div>
19               
20             <div id="more">
21                <a href="http://1code.codeplex.com/">More code samples</a>
22             </div> 
23             
24             <div id="menucontainer">
25             
26                 <ul id="menu">              
27                     <li><%= Html.ActionLink("Home", "Index", "Home")%></li>
28                 </ul>
29             
30             </div>
31         </div>
33         <div id="main">
34             <asp:ContentPlaceHolder ID="MainContent" runat="server" />
36             <div id="footer">
37             </div>
38         </div>
39     </div>
40 </body>
41 </html>